setup()
click to toggle source
def setup
DeleteFileColumn.generate_delete_helpers(MockModel)
@model = MockModel.new
@model.band_image = "coolio.jpg"
end
test__delete_band_image__boolean__should_delete()
click to toggle source
def test__delete_band_image__boolean__should_delete
@model.delete_band_image = true
assert_nil @model.band_image
end
test__delete_band_image__boolean_false__shouldnt_delete()
click to toggle source
def test__delete_band_image__boolean_false__shouldnt_delete
@model.delete_band_image = false
assert_not_nil @model.band_image
end
test__delete_band_image__string__should_delete()
click to toggle source
def test__delete_band_image__string__should_delete
@model.delete_band_image = "true"
assert_nil @model.band_image
end
test__delete_band_image__string_false__shouldnt_delete()
click to toggle source
def test__delete_band_image__string_false__shouldnt_delete
@model.delete_band_image = "false"
assert_not_nil @model.band_image
end
test__file_column_fields()
click to toggle source
def test__file_column_fields
assert_equal(1, @model.file_column_fields.length)
end
test__just_uploaded__shouldnt_delete()
click to toggle source
def test__just_uploaded__shouldnt_delete
@model.band_image_just_uploaded = true
@model.delete_band_image = "true"
assert_not_nil(@model.band_image)
end