Sha256: 494ae8fa67b0b2da8b4063721b41f89ca507e297c37bbe123a93714aab8acbaf
Contents?: true
Size: 449 Bytes
Versions: 3
Compression:
Stored size: 449 Bytes
Contents
# -*- coding: utf-8 -*- require 'minitest/autorun' require 'simplecov' SimpleCov.start describe Fab do let(:fab){ Fab.new } describe "#uuid" do before do @x = fab.uuid end it "is a string" do @x.must_be_kind_of String end end describe "#uuids" do before do @x = fab.uuids end it "is a list of String items" do @x.each{|x| 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/uuid_test.rb |
sixarm_ruby_fab-1.0.1 | test/sixarm_ruby_fab_test/uuid_test.rb |
sixarm_ruby_fab-1.0.0 | test/sixarm_ruby_fab_test/uuid_test.rb |