• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

source-academy / backend / e0330f2cf38b2d8af12bffd20f4cac2158d607fc-PR-1236

31 Mar 2025 09:12AM UTC coverage: 19.982% (-73.6%) from 93.607%
e0330f2cf38b2d8af12bffd20f4cac2158d607fc-PR-1236

Pull #1236

github

RichDom2185
Redate migrations to maintain total ordering
Pull Request #1236: Added Exam mode

12 of 57 new or added lines in 8 files covered. (21.05%)

2430 existing lines in 97 files now uncovered.

671 of 3358 relevant lines covered (19.98%)

3.03 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/lib/cadet/helpers/context_helper.ex
1
defmodule Cadet.ContextHelper do
2
  @moduledoc """
3
  Contains utility functions that may be commonly used across the Cadet project.
4
  """
5

6
  alias Cadet.Repo
7

8
  def simple_update(queryable, id, opts \\ []) do
UNCOV
9
    params = opts[:params] || []
×
UNCOV
10
    using = opts[:using] || fn x, _ -> x end
×
UNCOV
11
    model = Repo.get(queryable, id)
×
12

UNCOV
13
    if model == nil do
×
14
      {:error, :not_found}
15
    else
UNCOV
16
      changeset = using.(model, params)
×
UNCOV
17
      Repo.update(changeset)
×
18
    end
19
  end
20
end
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc