about summary refs log tree commit diff
path: root/spec/helpers/atom_builder_helper_spec.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-02-29 19:42:08 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-02-29 19:42:08 +0100
commit0e8f59c16fcb21301c736ecbc4424cb4c5388c42 (patch)
tree344ac1e0b2d165ba4fe3870f786e854710970ce1 /spec/helpers/atom_builder_helper_spec.rb
parent11ff92c9d7b27c2c9ed86f649aef8d956cc8b989 (diff)
Refactoring Grape API methods into normal controllers & other things
Diffstat (limited to 'spec/helpers/atom_builder_helper_spec.rb')
-rw-r--r--spec/helpers/atom_builder_helper_spec.rb123
1 files changed, 123 insertions, 0 deletions
diff --git a/spec/helpers/atom_builder_helper_spec.rb b/spec/helpers/atom_builder_helper_spec.rb
new file mode 100644
index 000000000..04dda6f37
--- /dev/null
+++ b/spec/helpers/atom_builder_helper_spec.rb
@@ -0,0 +1,123 @@
+require 'rails_helper'
+
+RSpec.describe AtomBuilderHelper, type: :helper do
+  describe '#stream_updated_at' do
+    pending
+  end
+
+  describe '#entry' do
+    pending
+  end
+
+  describe '#feed' do
+    pending
+  end
+
+  describe '#unique_id' do
+    pending
+  end
+
+  describe '#simple_id' do
+    pending
+  end
+
+  describe '#published_at' do
+    pending
+  end
+
+  describe '#updated_at' do
+    pending
+  end
+
+  describe '#verb' do
+    pending
+  end
+
+  describe '#content' do
+    pending
+  end
+
+  describe '#title' do
+    pending
+  end
+
+  describe '#author' do
+    pending
+  end
+
+  describe '#target' do
+    pending
+  end
+
+  describe '#object_type' do
+    pending
+  end
+
+  describe '#uri' do
+    pending
+  end
+
+  describe '#name' do
+    pending
+  end
+
+  describe '#summary' do
+    pending
+  end
+
+  describe '#subtitle' do
+    pending
+  end
+
+  describe '#link_alternate' do
+    pending
+  end
+
+  describe '#link_self' do
+    pending
+  end
+
+  describe '#link_hub' do
+    pending
+  end
+
+  describe '#link_salmon' do
+    pending
+  end
+
+  describe '#portable_contact' do
+    pending
+  end
+
+  describe '#in_reply_to' do
+    pending
+  end
+
+  describe '#link_mention' do
+    pending
+  end
+
+  describe '#disambiguate_uri' do
+    pending
+  end
+
+  describe '#disambiguate_url' do
+    pending
+  end
+
+  describe '#include_author' do
+    pending
+  end
+
+  describe '#include_entry' do
+    pending
+  end
+
+  describe '#link_avatar' do
+    pending
+  end
+
+  describe '#logo' do
+    pending
+  end
+end