Sha256: b5ea919d19446091edbaf2b8ab78f004a0c82087b81deb3a915ffafb2047ac9d
Contents?: true
Size: 1.09 KB
Versions: 2
Compression:
Stored size: 1.09 KB
Contents
require File.join(File.dirname(__FILE__), "../test_helper.rb") class DeleteFileColumnTest < Test::Unit::TestCase def setup DeleteFileColumn.generate_delete_helpers(MockModel) @model = MockModel.new @model.band_image = "coolio.jpg" end def test__file_column_fields assert_equal(1, @model.file_column_fields.length) end def test__delete_band_image__boolean__should_delete @model.delete_band_image = true assert_nil @model.band_image end def test__delete_band_image__string__should_delete @model.delete_band_image = "true" assert_nil @model.band_image end def test__delete_band_image__boolean_false__shouldnt_delete @model.delete_band_image = false assert_not_nil @model.band_image end def test__delete_band_image__string_false__shouldnt_delete @model.delete_band_image = "false" assert_not_nil @model.band_image end def test__just_uploaded__shouldnt_delete @model.band_image_just_uploaded = true @model.delete_band_image = "true" assert_not_nil(@model.band_image) end end
Version data entries
2 entries across 2 versions & 1 rubygems