# ----------------------------------------------------------------------------- # # Tests for the simple spherical line string implementation # # ----------------------------------------------------------------------------- require "test/unit" require "rgeo" require ::File.expand_path("../common/line_string_tests.rb", ::File.dirname(__FILE__)) module RGeo module Tests # :nodoc: module SphericalGeographic # :nodoc: class TestLineString < ::Test::Unit::TestCase # :nodoc: def setup @factory = ::RGeo::Geographic.spherical_factory end include ::RGeo::Tests::Common::LineStringTests undef_method :test_fully_equal undef_method :test_geometrically_equal_but_different_type undef_method :test_geometrically_equal_but_different_type2 undef_method :test_geometrically_equal_but_different_overlap undef_method :test_empty_equal undef_method :test_not_equal end end end end