Sha256: 8255e0e732ff3e981e33cb4ba46bd8f7b1cd276ca738e7868b4eab6980b0df5c

Contents?: true

Size: 832 Bytes

Versions: 14

Compression:

Stored size: 832 Bytes

Contents

# encoding: utf-8

require 'helper'

class TestGeolocation < Test::Unit::TestCase
  def test_lat
    assert_match /[0-9]+/, Faker::Geolocation.lat.to_s
  end

  def test_lng
    assert_match /[0-9]+/, Faker::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 = Faker::Geolocation.boxed_coords(coords[0], coords[1])

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

  end
end

Version data entries

14 entries across 14 versions & 3 rubygems

Version Path
solidus_backend-1.0.0.pre3 vendor/bundle/gems/ffaker-1.32.1/test/test_geolocation.rb
solidus_backend-1.0.0.pre2 vendor/bundle/gems/ffaker-1.32.1/test/test_geolocation.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/ffaker-1.32.1/test/test_geolocation.rb
ffaker-1.32.1 test/test_geolocation.rb
ffaker-1.32.0 test/test_geolocation.rb
ffaker-1.31.0 test/test_geolocation.rb
ffaker-1.30.0 test/test_geolocation.rb
ffaker-1.25.0 test/test_geolocation.rb
ffaker-1.24.0 test/test_geolocation.rb
ffakerer-1.0.2 test/test_geolocation.rb
ffaker-1.23.0 test/test_geolocation.rb
ffakerer-1.0.1 test/test_geolocation.rb
ffaker-1.22.1 test/test_geolocation.rb
ffaker-1.22.0 test/test_geolocation.rb