Sha256: 3b1a367f234e5c3c9a6d0b15293f45ba8bb3f8b33f4d6f6dbcf820545b7c2fce

Contents?: true

Size: 938 Bytes

Versions: 10

Compression:

Stored size: 938 Bytes

Contents

# encoding: utf-8

require 'helper'

class TestGeolocation < Test::Unit::TestCase
  include DeterministicHelper

  assert_methods_are_deterministic(FFaker::Geolocation, :lat, :lng)

  def test_lat
    assert_match(/[0-9]+/, FFaker::Geolocation.lat.to_s)
  end

  def test_lng
    assert_match(/[0-9]+/, FFaker::Geolocation.lng.to_s)
  end

  def test_boxed_coords
    coords_list = [
      [[1, 1], [3, 3]],
      [[12.3455, 23.3434], [34.3434, 36.34343]],
      [[12.3455, 23.3434], [10.3434, 6.34343]]
    ]

    coords_list.each do |coords|
      lat_min = [coords[0][0], coords[1][0]].min
      lat_max = [coords[0][0], coords[1][0]].max
      lon_min = [coords[0][1], coords[1][1]].min
      lon_max = [coords[0][1], coords[1][1]].max

      new_coords = FFaker::Geolocation.boxed_coords(coords[0], coords[1])

      assert (lat_min..lat_max).cover?new_coords[0]
      assert (lon_min..lon_max).cover?new_coords[1]
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ffaker-2.11.0 test/test_geolocation.rb
ffaker-2.10.0 test/test_geolocation.rb
ffaker-2.9.0 test/test_geolocation.rb
ffaker-2.8.1 test/test_geolocation.rb
ffaker-2.8.0 test/test_geolocation.rb
ffaker-2.7.0 test/test_geolocation.rb
ffaker-2.6.0 test/test_geolocation.rb
ffaker-2.5.0 test/test_geolocation.rb
ffaker-2.4.0 test/test_geolocation.rb
ffaker-2.3.0 test/test_geolocation.rb