spec/looksee/lookup_path_spec.rb in looksee-4.4.0 vs spec/looksee/lookup_path_spec.rb in looksee-5.0.0
- old
+ new
@@ -87,10 +87,10 @@
lookup_path.find('f').should be_nil
end
end
end
- describe Looksee::LookupPath::Entry do
+ describe 'Looksee::LookupPath::Entry' do
it "should iterate over methods in alphabetical order" do
temporary_class(:C)
add_methods(C, public: [:a, :c, :b])
@lookup_path = Looksee::LookupPath.new(C.new)
@lookup_path.entries.first.map{|name, visibility| name}.should == ['a', 'b', 'c']