summaryrefslogtreecommitdiffstats
path: root/spec/link_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/link_spec.rb')
-rw-r--r--spec/link_spec.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/spec/link_spec.rb b/spec/link_spec.rb
new file mode 100644
index 0000000..fe53cf0
--- /dev/null
+++ b/spec/link_spec.rb
@@ -0,0 +1,26 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+
+require 'spec_helper'
+#
+describe EvenDoors::Link do
+ #
+ it "from particle data" do
+ p = EvenDoors::Spin.require_p EvenDoors::Particle
+ p.set_data EvenDoors::LNK_SRC, 'input1'
+ p.set_data EvenDoors::LNK_DSTS, 'concat1?follow,output1'
+ p.set_data EvenDoors::LNK_FIELDS, 'f0,f2'
+ p.set_data EvenDoors::LNK_CONDF, 'f0,f1,f2'
+ p.set_data EvenDoors::LNK_CONDV, 'v0v1v2'
+ lnk = EvenDoors::Link.from_particle_data p
+ lnk.src.should eql 'input1'
+ lnk.dsts.should eql 'concat1?follow,output1'
+ lnk.fields.should eql 'f0,f2'
+ lnk.cond_fields.should eql 'f0,f1,f2'
+ lnk.cond_value.should eql 'v0v1v2'
+ end
+ #
+end
+#
+# EOF