Sha256: 666d3fc5dc5a5d28ea2a0ed02e2f7c7c60a3d5ce14064889fd7522f546f44a1f
Contents?: true
Size: 1.44 KB
Versions: 4
Compression:
Stored size: 1.44 KB
Contents
require 'test_helper' require 'netzke-core' require 'netzke/properties_tool' require 'netzke/container' require 'netzke/accordion_panel' # require 'netzke/grid_panel_interface' # require 'netzke/grid_panel_js_builder' require 'netzke/grid_panel' require 'netzke/ar_ext' # require 'netzke/column' class GridPanelTest < ActiveSupport::TestCase test "class configuration" do assert_equal(NetzkeGridPanelColumn, Netzke::GridPanel.column_manager_class) assert_equal(NetzkeLayout, Netzke::GridPanel.layout_manager_class) end test "interface" do grid = Netzke::GridPanel.new(:name => 'grid', :data_class_name => 'Book', :layout_manager => false, :columns => [:id, :title, :recent]) # post grid.post_data(:created_records => [{:title => 'Lord of the Rings'}].to_json) assert_equal('Lord of the Rings', Book.first.title) grid.post_data(:updated_records => [{:id => Book.first.id, :title => 'Lolita'}].to_json) assert_equal('Lolita', Book.first.title) grid.post_data(:created_records => [{:title => 'Upanishad'}].to_json) # get data = grid.get_data assert_equal('Lolita', data[:data][0][1]) # title of the first book assert_equal('Yes', data[:data][1][2]) # "recent" virtual column in the second book # delete res = grid.delete_data(:records => [1,2].to_json) assert_equal(true, res[:success]) assert_equal(nil, Book.first) end # TODO: add tests with association column end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
netzke-basepack-0.3.3 | test/grid_panel_test.rb |
netzke-basepack-0.3.3.1 | test/grid_panel_test.rb |
netzke-basepack-0.3.4 | test/grid_panel_test.rb |
netzke-basepack-0.3.5 | test/grid_panel_test.rb |