summaryrefslogtreecommitdiffstats
path: root/ruby-gem/spec/lib_spec.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-05-18 16:17:37 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2012-05-18 16:17:37 +0200
commitee2e1fff620f8d43c4230ea92f75477af40dbe96 (patch)
treea7bd5d511e36eaa69d1159ad2b3e6d757d39fb9d /ruby-gem/spec/lib_spec.rb
parentb26215c909c9388753979f6e1a71744e18212b73 (diff)
downloadskeletons-ee2e1fff620f8d43c4230ea92f75477af40dbe96.zip
skeletons-ee2e1fff620f8d43c4230ea92f75477af40dbe96.tar.gz
ruby-gem: clenaup
Diffstat (limited to 'ruby-gem/spec/lib_spec.rb')
-rw-r--r--ruby-gem/spec/lib_spec.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/ruby-gem/spec/lib_spec.rb b/ruby-gem/spec/lib_spec.rb
index 4b79596..2ae8b71 100644
--- a/ruby-gem/spec/lib_spec.rb
+++ b/ruby-gem/spec/lib_spec.rb
@@ -9,12 +9,14 @@ describe LIB do
LIB::Test.new
end
#
- it "should respond to hello" do
- LIB::Test.new.respond_to?( :hello).should be_true
+ it "should respond to say" do
+ LIB::Test.new.respond_to?(:say).should be_true
end
#
- it "should respond to world to hello" do
- LIB::Test.new.hello.should eql "world"
+ it "say should return hello world" do
+ LIB::Test.new.say.should eql "hello world"
end
#
end
+#
+# EOF