diff --git a/spec/rscons/monkey/module_spec.rb b/spec/rscons/monkey/module_spec.rb new file mode 100644 index 0000000..2585aa5 --- /dev/null +++ b/spec/rscons/monkey/module_spec.rb @@ -0,0 +1,6 @@ +describe "Module#short_name" do + it "returns the inner name of the module" do + Rscons::Environment.short_name.should == "Environment" + Rscons::Object.short_name.should == "Object" + end +end