main
1require "spec_helper"
2
3class Greeting
4 def say(message)
5 message
6 end
7end
8
9describe Greeting do
10 context "when greeting someone" do
11 it "should say hello" do
12 Greeting.new.say("hello").should == "hello"
13 end
14 end
15end