Sha256: d24e4ec5eb856a7d757eb732c9aa4ac2b5d59eb82e2e8014c164910514a349c4

Contents?: true

Size: 1.24 KB

Versions: 1

Compression:

Stored size: 1.24 KB

Contents

require 'spec_helper'

describe Datagrid::Columns do

  let(:group) { Group.create!(:name => "Pop") }

  subject do
    SimpleReport.new
  end

  describe "basic methods" do

    let!(:entry) {  Entry.create!(
      :group => group, :name => "Star", :disabled => false, :confirmed => false, :category => "first"
    ) }
    it "should build rows of data" do
      subject.rows.should == [["Pop", "Star"]]
    end
    it  "should generate header" do
      subject.header.should == ["Group", "Name"]
    end

    it "should generate data" do
      subject.data.should == [
        subject.header,
        subject.row_for(entry)
      ]
    end

  it "should support csv export" do
    subject.to_csv.should == "Group,Name\nPop,Star\n"
  end
  end

  it "should support columns with model and report arguments" do
    report = test_report(:category => "foo") do
      scope {Entry.order(:category)}
      filter(:category) do |value|
        where("category LIKE '%#{value}%'")
      end

      column(:exact_category) do |entry, report|
        entry.category == report.category
      end
    end
    Entry.create!(:category => "foo")
    Entry.create!(:category => "foobar")
    report.rows.first.first.should be_true
    report.rows.last.first.should be_false
  end


end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
datagrid-0.3.5 spec/datagrid/columns_spec.rb