class RubyIndexer::ClassesAndModulesTest

def test_module_with_statements

def test_module_with_statements
  index(<<~RUBY)
    module Foo
      def something; end
    end
  RUBY
  assert_entry("Foo", Entry::Module, "/fake/path/foo.rb:0-0:2-3")
end