Sha256: b038d7fbe31f4c2cf4cd8ed0d8a9db85eb887e1a06ac0aff064b788216a5f473
Contents?: true
Size: 1.47 KB
Versions: 18
Compression:
Stored size: 1.47 KB
Contents
#------------------------------------------------------------------------------------- ## Config # disableNewItems: true - do not show new item button in list header # showWithParent: true - show list on a aside from parent # disableFormCache: true - do disable cache (desirable use in set with reorderable) # searchable: true - add search button # reorderable: true - permit reorder items # disableDelete: true - do not add delete button below the form # disableSave: true - do not add save button in header # fullsizeView: true - use fullsize layout in desktop mode # urlParams: Article.sport_articles - additional parameter to be included into request # sortReverse: true - reverse objects sorting (descending order), default: false # compoundModule: true - add this, if module is compound (add extra test) # pagination: true - add this, if there are many objects (add extra test) # uploaderImage: true - run tests, for checking uploader #------------------------------------------------------------------------------------- require 'test_helper' class SportArticleFrontEndTest < ActionDispatch::IntegrationTest factory_name = 'article_with_sport_scope' class_name = Article list_of_modules = ['sport_articles'] urlParams = class_name.sport_articles config = {urlParams: urlParams} character_front_end(factory_name, class_name, list_of_modules, config) end
Version data entries
18 entries across 18 versions & 1 rubygems