follow eloy's advise

This commit is contained in:
Laurent Sansonetti
2011-12-25 17:03:28 +01:00
parent 1162483d43
commit df9360267e

View File

@@ -62,9 +62,12 @@ EOS
File.open('spec/main_spec.rb', 'w') do |io|
io.puts <<EOS
describe "Application '#{app_name}'" do
before do
@app = UIApplication.sharedApplication
end
it "has one window" do
app = UIApplication.sharedApplication
app.windows.size.should == 1
@app.windows.size.should == 1
end
end
EOS