Sha256: fae043a91defcf1062d8ec267e59616e480998b073a78ce69e5d65a62e94ad0f

Contents?: true

Size: 737 Bytes

Versions: 3

Compression:

Stored size: 737 Bytes

Contents

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

describe Fab do

  let(:fab){ Fab.new }

  describe "#street_address" do      

    before do
      @x = fab.street_address
    end

    it "is a string" do
      @x.must_be_kind_of String
    end

  end

  describe "#city" do      

    before do
      @x = fab.city
    end

    it "is a string" do
      @x.must_be_kind_of String
    end

  end

  describe "#usstate" do      

    before do
      @x = fab.usstate
    end

    it "is a string" do
      @x.must_be_kind_of String
    end

  end

  describe "#uszip" do      

    before do
      @x = fab.uszip
    end

    it "is a string" do
      @x.must_be_kind_of String
    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/postal_test.rb
sixarm_ruby_fab-1.0.1 test/sixarm_ruby_fab_test/postal_test.rb
sixarm_ruby_fab-1.0.0 test/sixarm_ruby_fab_test/postal_test.rb