From da389a664b87bb131435f2ccb904c0754d5d1655 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Tue, 6 Aug 2019 13:55:54 -0500 Subject: added ability to link accounts with `account:link:token` + `account:link:add` & switch between them with `i:am`/`we:are` bangtags; remove links with `account:link:del:USERNAME` or `account:link:clear`; list links with `account:link:list` --- spec/models/linked_user_spec.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 spec/models/linked_user_spec.rb (limited to 'spec/models') diff --git a/spec/models/linked_user_spec.rb b/spec/models/linked_user_spec.rb new file mode 100644 index 000000000..b283a8b31 --- /dev/null +++ b/spec/models/linked_user_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe LinkedUser, type: :model do + pending "add some examples to (or delete) #{__FILE__}" +end -- cgit