Sha256: 5f8abdd96d134464993d8f30a4832bd5a0d78e4a0b433d1ba16495eb9d83d4e1
Contents?: true
Size: 468 Bytes
Versions: 2
Compression:
Stored size: 468 Bytes
Contents
require 'gooddata/bricks/bricks' describe GoodData::Bricks do it "Has GoodData::Bricks::Brick class" do GoodData::Bricks::Brick.should_not == nil end it "should be possible to execute a brick" do class DummyBrick < GoodData::Bricks::Brick def call(params) puts "hello" end end include GoodData::Bricks p = GoodData::Bricks::Pipeline.prepare([GoodData::Bricks::BenchMiddleware, DummyBrick]) p.call({}) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gooddata-0.6.0 | spec/unit/bricks/bricks_spec.rb |
gooddata-0.6.0.pre11 | spec/unit/bricks/bricks_spec.rb |