Skip to content

Commit d0a1a06

Browse files
committed
test
1 parent 2721544 commit d0a1a06

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

test/TestExists.m

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function test_dirs(tc)
1515
end
1616

1717

18-
methods (Test, TestTags={'R2019b'})
18+
methods (Test, TestTags={'R2019a'})
1919

2020
function test_exists(tc, Ps)
2121
ok = stdlib.exists(Ps{1});
@@ -32,8 +32,10 @@ function test_is_writable(tc, Ps)
3232
r = stdlib.is_writable(Ps{1});
3333
tc.verifyEqual(r, Ps{2})
3434
end
35+
end
3536

3637

38+
methods (Test, TestTags={'R2019b'})
3739
function test_is_char_device(tc, B_is_char_device)
3840
% /dev/stdin may not be available on CI systems
3941
n = stdlib.null_file();
@@ -48,7 +50,6 @@ function test_is_char_device(tc, B_is_char_device)
4850
tc.verifyEmpty(r)
4951
end
5052
end
51-
5253
end
5354

5455
end
@@ -70,4 +71,4 @@ function test_is_char_device(tc, B_is_char_device)
7071
Ps{end+1} = {systemDrive, true};
7172
end
7273
end
73-
end
74+
end

test/TestIni.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
classdef (SharedTestFixtures={ matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))))}, ...
2-
TestTags = {'R2019b', 'impure'}) ...
2+
TestTags = {'R2019a', 'impure'}) ...
33
TestIni < matlab.unittest.TestCase
44

55

test/TestIsExe.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
classdef (SharedTestFixtures={ matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))))}, ...
2-
TestTags = {'pure'}) ...
2+
TestTags = {'R2019b', 'pure'}) ...
33
TestIsExe < matlab.unittest.TestCase
44

55
properties (TestParameter)
@@ -23,7 +23,7 @@ function test_dirs(tc)
2323
end
2424

2525

26-
methods(Test, TestTags={'R2019b'})
26+
methods(Test)
2727

2828
function test_is_exe(tc, p)
2929
r = stdlib.is_exe(p{1});

test/TestJoin.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
classdef (SharedTestFixtures={ matlab.unittest.fixtures.PathFixture(fileparts(fileparts(mfilename('fullpath'))))}, ...
2-
TestTags = {'R2019b', 'pure'}) ...
2+
TestTags = {'R2019a', 'pure'}) ...
33
TestJoin < matlab.unittest.TestCase
44

55
properties (TestParameter)

0 commit comments

Comments
 (0)