Sha256: 14367368000cb3877434f66d1239157badb7f60683c456c61db284c6f214a2d4
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
# encoding: UTF-8 # Copyright 2011 innoQ Deutschland GmbH # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 'test_helper' class LabelsOrderTest < ActionDispatch::IntegrationTest test "label order is not case-sensitive" do names = ["aaa", "bbb", "abc", "ABC"] lang = "en" # create a few labels label_class = Iqvoc::Concept.labeling_classes.first.first.label_class names.each { |name| label = label_class.new(:origin => "_%s" % name, :value => name, :language => lang, :published_at => Time.now) label.save } assert_equal names.length, Label::Base.all.count # just to avoid confusion get labels_path(:lang => lang, :format => "json") data = JSON.parse(@response.body) assert_response :success assert_equal "aaa", data[0]["name"] assert_equal "abc", data[1]["name"] assert_equal "ABC", data[2]["name"] # XXX: do we care about order of "ABC" vs. "abc"? assert_equal "bbb", data[3]["name"] end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
iqvoc_skosxl-2.3.1 | test/integration/labels_order_test.rb |
iqvoc_skosxl-2.3.0 | test/integration/labels_order_test.rb |