Sha256: 013c8432b0e0752073a917fb9c096aef42d075696499626d636b2c22958b3f6c
Contents?: true
Size: 1.73 KB
Versions: 4
Compression:
Stored size: 1.73 KB
Contents
require 'test_helper' class CkeditorTest < ActiveSupport::TestCase def teardown Ckeditor.picture_model = nil Ckeditor.attachment_file_model = nil end test "truth" do assert_kind_of Module, Ckeditor end test 'setup block yields self' do Ckeditor.setup do |config| assert_equal Ckeditor, config end end test 'default picture model' do assert_equal Ckeditor.picture_model, Ckeditor::Picture end test 'configuration specifying picture model' do Ckeditor.setup do |config| config.picture_model = CustomPicture end assert_equal Ckeditor.picture_model, CustomPicture end test 'configuration specifying picture model using block' do Ckeditor.setup do |config| config.picture_model { CustomPicture } end assert_equal Ckeditor.picture_model, CustomPicture end test 'picture model adapter' do assert_equal Ckeditor.picture_adapter, Ckeditor::Picture.to_adapter end test 'default attachment file model' do assert_equal Ckeditor.attachment_file_model, Ckeditor::AttachmentFile end test 'configuration specifying attachment file model' do Ckeditor.setup do |config| config.attachment_file_model = CustomAttachmentFile end assert_equal Ckeditor.attachment_file_model, CustomAttachmentFile end test 'configuration specifying attachment file model using block' do Ckeditor.setup do |config| config.attachment_file_model { CustomAttachmentFile } end assert_equal Ckeditor.attachment_file_model, CustomAttachmentFile end test 'attachment file model adapter' do assert_equal Ckeditor.attachment_file_adapter, Ckeditor::AttachmentFile.to_adapter end class CustomPicture; end class CustomAttachmentFile; end end
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
ckeditor-4.0.9 | test/ckeditor_test.rb |
ckeditor-4.0.8 | test/ckeditor_test.rb |
base2_ckeditor-4.0.7 | test/ckeditor_test.rb |
ckeditor-4.0.7 | test/ckeditor_test.rb |