Sha256: 2d54c2c0374432f50d5fdaa23c34a9ff10fbb4c104786a95347e99bda10c3c52
Contents?: true
Size: 444 Bytes
Versions: 3
Compression:
Stored size: 444 Bytes
Contents
# -*- coding: utf-8 -*- require 'minitest/autorun' require 'simplecov' SimpleCov.start describe Fab do let(:fab){ Fab.new } describe "#id" do before do @x = fab.id end it "is an integer" do @x.must_be_kind_of Fixnum end end describe "#ids" do before do @x = fab.ids end it "is a list of integer items" do @x.each{|x| x.must_be_kind_of Fixnum} 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/id_test.rb |
sixarm_ruby_fab-1.0.1 | test/sixarm_ruby_fab_test/id_test.rb |
sixarm_ruby_fab-1.0.0 | test/sixarm_ruby_fab_test/id_test.rb |