File: test-version.rb

package info (click to toggle)
ninix-kagari 2.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,184 kB
  • sloc: ruby: 42,399; makefile: 77; sh: 65
file content (13 lines) | stat: -rw-r--r-- 189 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
require_relative "../lib/ninix/version"

module NinixTest

  class VersionTest

    def initialize()
      print "#{Version.VERSION_INFO}\n"
    end
  end
end

NinixTest::VersionTest.new()