Sha256: 26675b74258f297ed934dabe8f3c6ba13422b261349cddd6fa28b1030a333282
Contents?: true
Size: 1.33 KB
Versions: 15
Compression:
Stored size: 1.33 KB
Contents
require 'spec_helper' require 'integration/required_field_validator/spec_helper' describe 'required_field_validator/text_type_value_spec' do # keep in mind any ScmOperation has a default value for brand property # so it is used describe 'GitOperation' do before :all do GitOperation.auto_migrate! end before do @operation = GitOperation.new(:network_connection => true, :clean_working_copy => true, :message => "I did it! I did it!! Hell yeah!!!") end describe "with empty message" do before do @operation.message = "" end it "is NOT valid for committing" do # empty string is not considered present for # a text value @operation.should_not be_valid_for_committing # sanity check since this empty vs blank vs nil # thing is a shaky ground @operation.message = "RUBY ON RAILS CAN SCALE NOW!!! w00t!!!" @operation.should be_valid_for_committing end it "IS valid for pushing" do @operation.should be_valid_for_pushing end it "IS valid for pulling" do @operation.should be_valid_for_pulling end it "is not valid in default context" do @operation.should_not be_valid end end end end
Version data entries
15 entries across 15 versions & 3 rubygems