Skip to content

Commit

Permalink
Updated testsuite
Browse files Browse the repository at this point in the history
  • Loading branch information
mchf committed Mar 27, 2019
1 parent d56e545 commit 6801f7c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/data/scr_read/sysconfig/network/routes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
10.29.7.0 10.29.129.1 255.255.255.0 eth0
10.192.0.0/10 10.29.129.1 - -
default 10.29.129.3 -
31 changes: 31 additions & 0 deletions test/y2network/config_reader/sysconfig_routes_reader_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Copyright (c) [2019] SUSE LLC
#
# All Rights Reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of version 2 of the GNU General Public License as published
# by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, contact SUSE LLC.
#
# To contact SUSE LLC about this file by physical or electronic mail, you may
# find current contact information at www.suse.com.
require_relative "../../test_helper"

require "y2network/config_reader/sysconfig_routes_reader"

describe Y2Network::ConfigReader::SysconfigRoutesReader do
subject(:reader) { described_class.new }

describe "#config" do
it "returns a RoutingTable object" do
expect(reader.config).to be_instance_of Y2Network::RoutingTable
end
end
end

0 comments on commit 6801f7c

Please sign in to comment.