Skip to content

Commit

Permalink
Introduced the 3 checks skeleton for the hello world
Browse files Browse the repository at this point in the history
  • Loading branch information
thesp0nge committed May 15, 2012
1 parent 28da702 commit c0d812b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions spec/coat_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,8 @@

Coat::Parser.new.parse(code) =~ node
end

it "the hello world program" do
fail "you must write it"
end
end
4 changes: 4 additions & 0 deletions spec/lexer_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,8 @@

end

it "must recognize the hello world contract " do
fail "you must write it"
end

end
4 changes: 4 additions & 0 deletions spec/parser_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
it "must parse a string literal" do
parser.parse('"test"').should == Nodes.new([StringNode.new("test")])
end

it "must parse the hello world" do
fail "you must write it"
end


end

0 comments on commit c0d812b

Please sign in to comment.