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