class DeleteFileColumnTest

Public Instance Methods

setup() click to toggle source
# File lib/active_scaffold/bridges/file_column/test/functional/file_column_keep_test.rb, line 4
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
# File lib/active_scaffold/bridges/file_column/test/functional/file_column_keep_test.rb, line 14
      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
# File lib/active_scaffold/bridges/file_column/test/functional/file_column_keep_test.rb, line 25
      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
# File lib/active_scaffold/bridges/file_column/test/functional/file_column_keep_test.rb, line 19
      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
# File lib/active_scaffold/bridges/file_column/test/functional/file_column_keep_test.rb, line 30
      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
# File lib/active_scaffold/bridges/file_column/test/functional/file_column_keep_test.rb, line 10
def test__file_column_fields
  assert_equal(1, @model.file_column_fields.length)
end
test__just_uploaded__shouldnt_delete() click to toggle source
# File lib/active_scaffold/bridges/file_column/test/functional/file_column_keep_test.rb, line 36
def test__just_uploaded__shouldnt_delete
  @model.band_image_just_uploaded = true
  @model.delete_band_image = "true"
  assert_not_nil(@model.band_image)
end