Bugzilla – Attachment 162659 Details for
Bug 36176
[23.11 and below] We need tests to check for 'cud-' operations in stable branches (pre-24.05)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36176: Reject cud- for stable branches
Bug-36176-Reject-cud--for-stable-branches.patch (text/plain), 1.55 KB, created by
Marcel de Rooy
on 2024-03-01 10:45:30 UTC
(
hide
)
Description:
Bug 36176: Reject cud- for stable branches
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2024-03-01 10:45:30 UTC
Size:
1.55 KB
patch
obsolete
>From d7876a353b1e9344feb8f7ea8eee65e25e380bee Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 28 Feb 2024 16:28:33 +0100 >Subject: [PATCH] Bug 36176: Reject cud- for stable branches >Content-Type: text/plain; charset=utf-8 > >Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > xt/find-cud.t | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > create mode 100755 xt/find-cud.t > >diff --git a/xt/find-cud.t b/xt/find-cud.t >new file mode 100755 >index 0000000000..0f0805773a >--- /dev/null >+++ b/xt/find-cud.t >@@ -0,0 +1,26 @@ >+#!/usr/bin/perl >+ >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha 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 Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+use Test::More tests => 1; >+use Data::Dumper; >+ >+my @files = `git grep 'cud-' ':(exclude)xt/find-cud.t'`; >+chomp for @files; >+ >+is( @files, 0, "This branch is not supposed to have 'cud-', see bug 34478." ) >+ or diag( Dumper \@files ); >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 36176
:
162536
|
162550
| 162659 |
163960