Sha256: d5245438a7ae2f9ddc8824b46e462d23bf62c2cd23aeb01e7d7ae1c5bdc554d5

Contents?: true

Size: 358 Bytes

Versions: 3

Compression:

Stored size: 358 Bytes

Contents

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

describe Fab do

  let(:fab){ Fab.new }

  describe "#password" do      

    before do
      @x = fab.password
    end

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

    it "is gte nine characters" do
      @x.size.must_be :>=, 9
    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/password_test.rb
sixarm_ruby_fab-1.0.1 test/sixarm_ruby_fab_test/password_test.rb
sixarm_ruby_fab-1.0.0 test/sixarm_ruby_fab_test/password_test.rb