Sha256: 48a9d48ea012973b45965fc221162b3b5dd5d04ea0b4392b3109aeec9a62f7ce

Contents?: true

Size: 440 Bytes

Versions: 3

Compression:

Stored size: 440 Bytes

Contents

# -*- coding: utf-8 -*-
require 'minitest/autorun'
require 'simplecov'
SimpleCov.start

describe Fab do

  let(:fab){ Fab.new }

  describe "#latitude" do      

    before do
      @x = fab.latitude
    end

    it "is a float" do
      @x.must_be_kind_of Float
    end

  end

  describe "#longitude" do      

    before do
      @x = fab.longitude
    end

    it "returns a float" do
      @x.must_be_kind_of Float
    end

  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sixarm_ruby_fab-1.0.2 test/sixarm_ruby_fab_test/geo_test.rb
sixarm_ruby_fab-1.0.1 test/sixarm_ruby_fab_test/geo_test.rb
sixarm_ruby_fab-1.0.0 test/sixarm_ruby_fab_test/geo_test.rb