Sha256: 6ca455b84b2a6b039bbd9335504e5cfb2f23f1ea61ab1d849cf66f5ac2de3650
Contents?: true
Size: 674 Bytes
Versions: 16
Compression:
Stored size: 674 Bytes
Contents
require 'spec_helper' describe 'module matcher' do context "content without class Hello" do no_class = %q{ module Hello def hello end end} it "should not have class Hello" do no_class.should_not have_class :Hello do |content| content.should_not be_empty end end end context "content with class Hello" do with_class = %q{ class Hello def hello end end} it "should have class Hello" do with_class.should have_class :Hello do |content| content.should_not be_empty end end end end
Version data entries
16 entries across 16 versions & 1 rubygems