parent
4cd8de5327
commit
4e5ee36675
2 changed files with 12 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ class Profile < ApplicationRecord
|
|||
include Diaspora::Taggable
|
||||
|
||||
attr_accessor :tag_string
|
||||
acts_as_taggable_on :tags
|
||||
acts_as_ordered_taggable
|
||||
extract_tags_from :tag_string
|
||||
validates :tag_list, :length => { :maximum => 5 }
|
||||
|
||||
|
|
|
|||
|
|
@ -269,6 +269,17 @@ describe Profile, :type => :model do
|
|||
expect(object).not_to be_valid
|
||||
end
|
||||
|
||||
it "keeps the order of the tag_string" do
|
||||
ActsAsTaggableOn::Tag.create(name: "test2")
|
||||
ActsAsTaggableOn::Tag.create(name: "test1")
|
||||
|
||||
string = "#test1 #test2"
|
||||
object.tag_string = string
|
||||
object.save
|
||||
|
||||
expect(Profile.find(object.id).tag_string).to eq(string)
|
||||
end
|
||||
|
||||
it_should_behave_like "it is taggable"
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue