Skip to content

Commit

Permalink
Merge pull request #81 from learn-co-curriculum/more-hints
Browse files Browse the repository at this point in the history
Update hello_world_spec.rb
  • Loading branch information
gj committed Feb 7, 2018
2 parents 6fb0387 + a470480 commit 29056af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/hello_world_spec.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
describe "Hello World" do
it 'has a file hello_world.rb' do
expect(File.exists?("hello_world.rb")).to be_truthy, "Did you create the file hello_world.rb?"
expect(File.exists?("hello_world.rb")).to be_truthy, "Did you create the file hello_world.rb? (If so, is it spelled exactly the same with the same capitalization?)"
end

it 'puts "Hello World!"' do
Expand All @@ -9,4 +9,4 @@
expect($stdout).to receive(:puts).with("Hello World!")
load './hello_world.rb'
end
end
end

0 comments on commit 29056af

Please sign in to comment.