Sha256: a6ad0168e459bd2c1871bd610e8e780ec01a5c603b9e627f643b2877deadca00

Contents?: true

Size: 279 Bytes

Versions: 3

Compression:

Stored size: 279 Bytes

Contents

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

describe Fab do

  let(:fab){ Fab.new }

  describe "#phone" do      

    before do
      @x = fab.phone
    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/phone_test.rb
sixarm_ruby_fab-1.0.1 test/sixarm_ruby_fab_test/phone_test.rb
sixarm_ruby_fab-1.0.0 test/sixarm_ruby_fab_test/phone_test.rb