Sha256: d84a25db927cc14b271590952b9359daf2a48ab762fb39a10094bd493b7e18a8

Contents?: true

Size: 451 Bytes

Versions: 3

Compression:

Stored size: 451 Bytes

Contents

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

describe Fab do

  let(:fab){ Fab.new }

  describe "#company_name" do      

    before do
      @x = fab.company_name
    end

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

  end

  describe "#job_title" do

    before do
      @x = fab.job_title
    end

    it "returns 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/company_test.rb
sixarm_ruby_fab-1.0.1 test/sixarm_ruby_fab_test/company_test.rb
sixarm_ruby_fab-1.0.0 test/sixarm_ruby_fab_test/company_test.rb