File: paginationPage_spec.rb

package info (click to toggle)
ruby-jekyll-paginate-v2 3.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,988 kB
  • sloc: ruby: 1,085; sh: 7; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 364 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
require_relative '../spec_helper.rb'

module Jekyll::PaginateV2::Generator
  describe "tesing pagination page implementation" do

    it "sould always read the template file into itself" do
      # DUE TO THE JEKYLL:PAGE CLASS ACCESSING FILE IO DIRECTLY 
      # I AM UNABLE TO MOCK OUT THE FILE OPERATIONS TO CREATE UNIT TESTS FOR THIS CLASS :/
    end

  end
end