Skip to content

Commit

Permalink
Add tests to be failed
Browse files Browse the repository at this point in the history
  • Loading branch information
luckypool committed Feb 28, 2014
1 parent 0fb2968 commit 83c5cc7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions spec/lib/dog_spec.rb
Expand Up @@ -7,10 +7,14 @@
expect(dog.name).to eq 'Pochi'
end

xit "has fangs" do
it "has fangs" do
dog = Dog.new
expect(dog.fangs).to eq 2
end

xit "is alived" do
it "is alived" do
dog = Dog.new
expect(dog).to be_alived
end
end

0 comments on commit 83c5cc7

Please sign in to comment.