Skip to content

Commit

Permalink
Add a spec to create cheryl
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanitoFatas committed Feb 12, 2018
1 parent c992c35 commit 25e0668
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/cheryl.rb
@@ -0,0 +1,4 @@
class Cheryl
def birthday
end
end
11 changes: 11 additions & 0 deletions spec/cheryl_spec.rb
@@ -0,0 +1,11 @@
require "cheryl"

RSpec.describe Cheryl do
describe "birthday" do
xit "is July 16" do
cheryl = Cheryl.new

expect(cheryl.birthday).to eq "July 16"
end
end
end

0 comments on commit 25e0668

Please sign in to comment.