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