Sha256: 678e97bfe2ceb0cb2d684e29f811657f2ff1e0f1519d7e711663773e0464a861
Contents?: true
Size: 1.63 KB
Versions: 2
Compression:
Stored size: 1.63 KB
Contents
require "spec_helper" RSpec.describe InfluxDB::Rails::Tags do let(:config) { InfluxDB::Rails::Configuration.new } describe ".to_h" do it "returns TrueClass" do subject = InfluxDB::Rails::Tags.new(config: config, tags: { hans: true }) expect(subject.to_h).to a_hash_including(hans: true) end it "returns FalseClass" do subject = InfluxDB::Rails::Tags.new(config: config, tags: { hans: false }) expect(subject.to_h).to a_hash_including(hans: false) end it "returns strings" do subject = InfluxDB::Rails::Tags.new(config: config, tags: { hans: "franz" }) expect(subject.to_h).to a_hash_including(hans: "franz") end it "returns strings containing blank" do subject = InfluxDB::Rails::Tags.new(config: config, tags: { hans: "franz hans" }) expect(subject.to_h).to a_hash_including(hans: "franz hans") end it "removes empty strings" do subject = InfluxDB::Rails::Tags.new(config: config, tags: { hans: "", franz: " " }) expect(subject.to_h).not_to a_hash_including(hans: "", franz: " ") end it "returns symbols" do subject = InfluxDB::Rails::Tags.new(config: config, tags: { hans: :franz }) expect(subject.to_h).to a_hash_including(hans: :franz) end it "removes nil" do subject = InfluxDB::Rails::Tags.new(config: config, tags: { hans: nil }) expect(subject.to_h).not_to a_hash_including(hans: nil) end it "leaves arrays alone" do subject = InfluxDB::Rails::Tags.new(config: config, tags: { hans: [], franz: %w[a b] }) expect(subject.to_h).to a_hash_including(hans: [], franz: %w[a b]) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
influxdb-rails-1.0.3 | spec/unit/tags.rb |
influxdb-rails-1.0.2 | spec/unit/tags.rb |