Sha256: 42cc9aef61c51d5f44b608c954fd5478b5593bde5d194ae4831088982b8ff468
Contents?: true
Size: 725 Bytes
Versions: 3
Compression:
Stored size: 725 Bytes
Contents
# -*- coding: utf-8 -*- require 'minitest/autorun' require 'simplecov' SimpleCov.start describe Fab do let(:fab){ Fab.new } describe "#name" do before do @x = fab.name end it "is a string" do @x.must_be_kind_of String end end describe "#note" do before do @x = fab.note end it "is a string" do @x.must_be_kind_of String end end describe "#description" do before do @x = fab.description end it "is a string" do @x.must_be_kind_of String end end describe "#lorem" do before do @x = fab.lorem end it "is 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/text_test.rb |
sixarm_ruby_fab-1.0.1 | test/sixarm_ruby_fab_test/text_test.rb |
sixarm_ruby_fab-1.0.0 | test/sixarm_ruby_fab_test/text_test.rb |