davidrichards-data_frame 0.0.11 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION.yml +1 -1
- data/lib/data_frame.rb +1 -0
- data/spec/data_frame_spec.rb +5 -0
- metadata +1 -1
data/VERSION.yml
CHANGED
data/lib/data_frame.rb
CHANGED
data/spec/data_frame_spec.rb
CHANGED
@@ -126,4 +126,9 @@ describe DataFrame do
|
|
126
126
|
hash.values.size.should eql(@labels.size)
|
127
127
|
hash.values.all? {|e| values.should be_include(e)}
|
128
128
|
end
|
129
|
+
|
130
|
+
it "should use variables like labels" do
|
131
|
+
@df.labels.should eql(@labels)
|
132
|
+
@df.variables.should eql(@labels)
|
133
|
+
end
|
129
134
|
end
|